Skip to content

Commit

Permalink
Update lib
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions Bot committed May 9, 2024
1 parent 6cd688b commit 8ec6763
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions lib/experimental_agents/llm_agents/groq_agent.d.ts
Original file line number Diff line number Diff line change
@@ -1,36 +1,37 @@
import { AgentFunction } from "../../graphai";
import { Groq } from "groq-sdk";
export declare const groqAgent: AgentFunction<{
model: string;
query?: string;
system?: string;
verbose?: boolean;
tools?: Record<string, any>;
tools?: Record<string, Groq.Chat.CompletionCreateParams.ToolChoice>;
temperature?: number;
max_tokens?: number;
tool_choice?: string | Record<string, any>;
}, Record<string, any> | string, string | Array<Record<string, any>>>;
}, Record<string, any> | string, string | Array<Groq.Chat.CompletionCreateParams.Message>>;
declare const groqAgentInfo: {
name: string;
agent: AgentFunction<{
model: string;
query?: string | undefined;
system?: string | undefined;
verbose?: boolean | undefined;
tools?: Record<string, any> | undefined;
tools?: Record<string, Groq.Chat.Completions.CompletionCreateParams.ToolChoice> | undefined;
temperature?: number | undefined;
max_tokens?: number | undefined;
tool_choice?: string | Record<string, any> | undefined;
}, string | Record<string, any>, string | Record<string, any>[]>;
}, string | Record<string, any>, string | Groq.Chat.Completions.CompletionCreateParams.Message[]>;
mock: AgentFunction<{
model: string;
query?: string | undefined;
system?: string | undefined;
verbose?: boolean | undefined;
tools?: Record<string, any> | undefined;
tools?: Record<string, Groq.Chat.Completions.CompletionCreateParams.ToolChoice> | undefined;
temperature?: number | undefined;
max_tokens?: number | undefined;
tool_choice?: string | Record<string, any> | undefined;
}, string | Record<string, any>, string | Record<string, any>[]>;
}, string | Record<string, any>, string | Groq.Chat.Completions.CompletionCreateParams.Message[]>;
samples: never[];
description: string;
category: string[];
Expand Down

0 comments on commit 8ec6763

Please sign in to comment.