repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | import { Message } from "@/types"; |
| #2 | |
| #3 | export const WELCOME_MESSAGE: Message = { |
| #4 | id: "1", |
| #5 | content: "👋 Hi there! I'm your personal assistant. How can I help you today? 😊", |
| #6 | sender: "assistant", |
| #7 | timestamp: new Date().toLocaleTimeString(), |
| #8 | }; |
| #9 | |
| #10 | export const INVALID_CONFIG_MESSAGE: Message = { |
| #11 | id: "2", |
| #12 | content: "Invalid configuration. Please check your API keys, and add a user and try again.", |
| #13 | sender: "assistant", |
| #14 | timestamp: new Date().toLocaleTimeString(), |
| #15 | }; |
| #16 | |
| #17 | export const ERROR_MESSAGE: Message = { |
| #18 | id: "3", |
| #19 | content: "Something went wrong. Please try again.", |
| #20 | sender: "assistant", |
| #21 | timestamp: new Date().toLocaleTimeString(), |
| #22 | }; |
| #23 | |
| #24 | export const AI_MODELS = { |
| #25 | openai: "gpt-4o", |
| #26 | anthropic: "claude-3-haiku-20240307", |
| #27 | cohere: "command-r-plus", |
| #28 | groq: "gemma2-9b-it", |
| #29 | } as const; |
| #30 | |
| #31 | export type Provider = keyof typeof AI_MODELS; |