We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, i wanna add a proxy to the Gemini API , how can i make it ? i just found that:
export declare class Gemini extends ToolCallLLM<GeminiAdditionalChatOptions> { model: GEMINI_MODEL; temperature: number; topP: number; maxTokens?: number | undefined; session: IGeminiSession; constructor(init?: GeminiConfig); get supportToolCall(): boolean; get metadata(): LLMMetadata; protected nonStreamChat(params: GeminiChatParamsNonStreaming): Promise<GeminiChatNonStreamResponse>; protected streamChat(params: GeminiChatParamsStreaming): GeminiChatStreamResponse; chat(params: GeminiChatParamsStreaming): Promise<GeminiChatStreamResponse>; chat(params: GeminiChatParamsNonStreaming): Promise<GeminiChatNonStreamResponse>; complete(params: LLMCompletionParamsStreaming): Promise<AsyncIterable<CompletionResponse>>; complete(params: LLMCompletionParamsNonStreaming): Promise<CompletionResponse>; }
where can I set the apikey and baseUrl like the openai? thanks!
The text was updated successfully, but these errors were encountered:
himself65
No branches or pull requests
Hi, i wanna add a proxy to the Gemini API , how can i make it ? i just found that:
where can I set the apikey and baseUrl like the openai? thanks!
The text was updated successfully, but these errors were encountered: