-
Notifications
You must be signed in to change notification settings - Fork 4
Raphael/chat go #101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Raphael/chat go #101
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR introduces a chat UI and a Go-based chat sample by adding a new Next.js chat application and a supporting Go API that utilizes the Modus SDK.
- Added TypeScript configuration and utility functions to support styling and responsive UI components
- Introduced new React components for chat input, chat interface, and buttons, along with corresponding documentation and configuration files
- Provided a Go implementation for the chat agent using the Modus SDK including tool integrations and GraphQL endpoint definitions
Reviewed Changes
Copilot reviewed 39 out of 39 changed files in this pull request and generated 2 comments.
Show a summary per file
File | Description |
---|---|
hypermode-chat/tsconfig.json | Added TypeScript configuration for the Next.js chat project |
hypermode-chat/src/utils/cn.ts | Introduced a helper function to merge classnames with Tailwind CSS |
hypermode-chat/src/components/*.tsx | Added chat-related UI components and input/button components |
hypermode-chat/src/app/* | Integrated the chat interface into the Next.js application |
hypermode-chat/src/app/action.ts | Added a server action for processing chat through a GraphQL query |
chat-agent/api-go/* | Introduced a Go-based sample chat agent with tool integrations |
hypermode-chat/* (config files) | Added necessary configuration files (package.json, .gitignore, etc.) |
Comments suppressed due to low confidence (1)
hypermode-chat/src/components/chat-interface.tsx:49
- [nitpick] Consider renaming 'userpref' to 'userPref' for improved readability and to follow camelCase conventions.
const [userpref, setUserpref] = useState("")
Running Code Quality on PRs by uploading data to Trunk will soon be removed. You can still run checks on your PRs using trunk-action - see the migration guide for more information. |
…es into raphael/chat-go
add entity extraction
add chat UI and chat go sample