Code Monkey home page Code Monkey logo

llm-agent's Introduction

llm-agent

The llm-agent is a TypeScript project designed to facilitate interactions with language models from multiple providers. It supports various LLM API providers that are compatible with the OpenAI API structure, allowing users to manage chat interactions and tool calls effectively.

Features

  • Provider Flexibility: Supports multiple providers, including OpenAI, Mistral, Together, and Groq, with a variety of models available.
  • Flexible Configuration: Customize the behavior of the agent with different models, temperature settings, and predefined system prompts.
  • Message Management: Maintain a history of chat messages to provide context for consecutive interactions.
  • Tool Call Handling: Process and respond to tool calls embedded within chat completions.

Available Providers

The agent can be configured to use various providers that offer API compatibility. Each provider requires specific environment variables to be set:

  • Together: Requires TOGETHERAI_API_KEY.
  • Mistral: Requires MISTRAL_API_KEY.
  • Groq: Requires GROQ_API_KEY.

Getting Started

Prerequisites

  • Node.js
  • npm (Node Package Manager)

Installation

npm install llm-agent

Usage

Import and use the Agent class within your TypeScript projects to interact with various language models. Configure the agent as needed for your specific requirements, utilizing a range of APIs from different providers.

const agent = new Agent({
  provider: Provider.Groq,
  model: chatModels[Provider.Groq][0] as string,
  temperature: 0.0,
  systemPrompt: "You are a helpful assistant.",
  tools,
  config,
});

(async () => {
  while (true) {
    const input = await ask(">>>");
    const response = await agent.send(input);
    console.log(response);
  }
})();

llm-agent's People

Contributors

thegafo avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.