Skip to content

Commit

Permalink
Merge pull request #868 from isamu/llm_agents0.2.3
Browse files Browse the repository at this point in the history
Llm agents0.2.3
  • Loading branch information
isamu authored Dec 30, 2024
2 parents c941949 + eee66eb commit bd84969
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions agents/llm_agents/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphai/llm_agents",
"version": "0.2.2",
"version": "0.2.3",
"description": "LLM agents for GraphAI.",
"main": "lib/index.js",
"files": [
Expand Down Expand Up @@ -28,7 +28,7 @@
"homepage": "https://github.com/receptron/graphai/blob/main/agents/llm_agents/README.md",
"dependencies": {
"@graphai/anthropic_agent": "^0.2.1",
"@graphai/gemini_agent": "^0.2.1",
"@graphai/gemini_agent": "^0.2.2",
"@graphai/groq_agent": "^0.2.1",
"@graphai/openai_agent": "^0.2.1",
"@graphai/replicate_agent": "^0.2.0",
Expand Down
2 changes: 2 additions & 0 deletions llm_agents/anthropic_agent/src/anthropic_agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ type AnthropicParams = AnthropicInputs & AnthropicConfig;

type AnthropicResult = Record<string, any> | string;

// https://docs.anthropic.com/ja/api/messages

export const anthropicAgent: AgentFunction<AnthropicParams, AnthropicResult, AnthropicInputs, AnthropicConfig> = async ({
params,
namedInputs,
Expand Down
2 changes: 2 additions & 0 deletions llm_agents/groq_agent/src/groq_agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ type GroqConfig = {

type GroqParams = GroqInputs & GroqConfig & { model: string };

// https://github.com/groq/groq-typescript

//
// This agent takes two optional inputs, and following parameters.
// inputs:
Expand Down

0 comments on commit bd84969

Please sign in to comment.