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 interface LLMResponse { |
| #4 | content: string; |
| #5 | role: string; |
| #6 | toolCalls?: Array<{ |
| #7 | name: string; |
| #8 | arguments: string; |
| #9 | }>; |
| #10 | } |
| #11 | |
| #12 | export interface LLM { |
| #13 | generateResponse( |
| #14 | messages: Array<{ role: string; content: string }>, |
| #15 | response_format?: { type: string }, |
| #16 | tools?: any[], |
| #17 | ): Promise<any>; |
| #18 | generateChat(messages: Message[]): Promise<LLMResponse>; |
| #19 | } |
| #20 |