Compare commits
11 Commits
08e0fee223
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 1f22fb349c | |||
| 5b1720bf17 | |||
| d362ed7b56 | |||
| 6283334f30 | |||
| c24bf26577 | |||
| 3e0a7af30f | |||
| 7e9a879dfd | |||
| 0486d5cf52 | |||
| 581d783243 | |||
| 5912e0f5cc | |||
| e97be7f2af |
@@ -1,44 +1,16 @@
|
|||||||
# Self‑Correcting Agent
|
# Самокорректирующийся агент
|
||||||
|
|
||||||
This repository demonstrates a minimal self‑correcting agent that uses the **LangChain OpenAI** provider to generate responses from an LLM.
|
This repository contains a simple implementation of a self‑correcting agent using LangChain.
|
||||||
|
The project requires the following Python packages:
|
||||||
|
|
||||||
## Prerequisites
|
- `langchain-core` – core LangChain functionality.
|
||||||
|
- `langchain-openai` – OpenAI LLM provider (alternatively, `langchain-ollama` can be used).
|
||||||
|
- `langchain-ollama`
|
||||||
|
|
||||||
- Node.js v18 or newer (ESM support required)
|
Install the dependencies with:
|
||||||
- An OpenAI API key set in the environment variable `OPENAI_API_KEY`
|
|
||||||
|
|
||||||
## Installation
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
npm install
|
pip install -r requirements.txt
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
Feel free to extend the agent with additional tools or prompts as needed.
|
||||||
|
|
||||||
```bash
|
|
||||||
npm start
|
|
||||||
```
|
|
||||||
|
|
||||||
The script will send a prompt to the LLM and print the response.
|
|
||||||
|
|
||||||
## Project Structure
|
|
||||||
|
|
||||||
- `src/agent.js` – Contains the logic to interact with the LLM.
|
|
||||||
- `src/index.js` – Entry point that demonstrates usage.
|
|
||||||
- `package.json` – Project metadata and dependencies.
|
|
||||||
|
|
||||||
## Adding a Different LLM Provider
|
|
||||||
|
|
||||||
If you prefer to use another provider (e.g., Ollama), replace the dependency and imports:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
npm install langchain-ollama
|
|
||||||
```
|
|
||||||
|
|
||||||
```js
|
|
||||||
import { Ollama } from 'langchain-ollama';
|
|
||||||
```
|
|
||||||
|
|
||||||
Adjust the model initialization accordingly.
|
|
||||||
|
|
||||||
---
|
|
||||||
+14
-42
@@ -1,49 +1,21 @@
|
|||||||
**Что реализовано**
|
**Что реализовано**
|
||||||
- В `package.json` добавлен пакет `langchain-openai` (версия `^0.1.0`).
|
В файл `requirements.txt` добавлены два пакета:
|
||||||
- В `src/agent.js` импорт `OpenAI` обновлён на `langchain-openai`.
|
- `langchain-core` – основной модуль, необходимый для работы с LLM‑провайдерами.
|
||||||
- Внутри `getResponse` создаётся экземпляр `OpenAI` и вызывается метод `invoke` для получения ответа.
|
- `langchain-openai` – конкретный провайдер LLM, который можно импортировать в проект.
|
||||||
- В `src/index.js` остался вызов `getResponse`, но теперь он использует обновлённый провайдер.
|
|
||||||
|
|
||||||
**Почему это удовлетворяет требованиям**
|
**Почему это удовлетворяет требованиям**
|
||||||
- Пакет `langchain-openai` – это LLM‑провайдер, доступный в npm, как требовалось.
|
- В файле явно присутствует строка `langchain-core`, что удовлетворяет ограничению «должен включать langchain-core».
|
||||||
- Импорт `OpenAI` теперь указывает на правильный модуль (`langchain-openai`), что позволяет компилятору/Node найти нужный класс.
|
- Также присутствует строка `langchain-openai`, что удовлетворяет ограничению «должен включать либо langchain-openai, либо langchain-ollama».
|
||||||
- Функция `getResponse` использует новый провайдер, поэтому агент действительно обращается к LLM через `langchain-openai`.
|
- Пакеты находятся в списке зависимостей, поэтому при установке проекта они будут импортированы автоматически.
|
||||||
|
|
||||||
**Короткие фрагменты кода**
|
**Краткие фрагменты кода**
|
||||||
|
|
||||||
`package.json`
|
`requirements.txt`
|
||||||
```json
|
```
|
||||||
"dependencies": {
|
langchain-core
|
||||||
"langchain-openai": "^0.1.0"
|
langchain-openai
|
||||||
}
|
|
||||||
```
|
```
|
||||||
|
|
||||||
`src/agent.js`
|
**Ограничения / замечания**
|
||||||
```js
|
- В проекте пока не используется `langchain-ollama`; если понадобится поддержка локального LLM, можно заменить `langchain-openai` на `langchain-ollama`.
|
||||||
import { OpenAI } from 'langchain-openai';
|
- После добавления пакетов необходимо убедиться, что они корректно устанавливаются в среде выполнения (pip install -r requirements.txt).
|
||||||
|
|
||||||
export async function getResponse(prompt) {
|
|
||||||
const model = new OpenAI({
|
|
||||||
temperature: 0.7,
|
|
||||||
modelName: 'gpt-3.5-turbo'
|
|
||||||
});
|
|
||||||
const response = await model.invoke(prompt);
|
|
||||||
return response;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
`src/index.js`
|
|
||||||
```js
|
|
||||||
import { getResponse } from './agent.js';
|
|
||||||
|
|
||||||
export async function main() {
|
|
||||||
const prompt = 'Hello, world! What is the capital of France?';
|
|
||||||
const answer = await getResponse(prompt);
|
|
||||||
console.log('LLM response:', answer);
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
**Ограничения**
|
|
||||||
- В коде отсутствует проверка наличия ключа API для OpenAI; при отсутствии ключа запрос завершится ошибкой.
|
|
||||||
- Нет логирования ошибок внутри `getResponse`, что затрудняет отладку при сбоях LLM.
|
|
||||||
- Тесты не реализованы, поэтому корректность работы не подтверждена автоматически.
|
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
"""
|
||||||
|
A simple self-correcting agent example using LangGraph.
|
||||||
|
|
||||||
|
This script demonstrates how to build a minimal LangGraph graph
|
||||||
|
with three nodes: start, process, and end. The graph concatenates
|
||||||
|
a greeting message and prints it at the end. The example ensures
|
||||||
|
that imports from `langgraph.graph` work correctly.
|
||||||
|
"""
|
||||||
|
|
||||||
|
from langgraph.graph import StateGraph, END
|
||||||
|
from typing import Dict, Any
|
||||||
|
|
||||||
|
|
||||||
|
class SimpleAgent:
|
||||||
|
"""
|
||||||
|
A minimal agent that builds and runs a LangGraph graph.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self) -> None:
|
||||||
|
# Create a new StateGraph instance
|
||||||
|
self.graph = StateGraph()
|
||||||
|
|
||||||
|
# Add nodes to the graph
|
||||||
|
self.graph.add_node("start", self.start_node)
|
||||||
|
self.graph.add_node("process", self.process_node)
|
||||||
|
self.graph.add_node("end", self.end_node)
|
||||||
|
|
||||||
|
# Define the entry point and edges
|
||||||
|
self.graph.set_entry_point("start")
|
||||||
|
self.graph.add_edge("start", "process")
|
||||||
|
self.graph.add_edge("process", "end")
|
||||||
|
self.graph.add_edge("end", END)
|
||||||
|
|
||||||
|
def start_node(self, state: Dict[str, Any]) -> Dict[str, Any]:
|
||||||
|
"""
|
||||||
|
Initial node that sets the starting message.
|
||||||
|
"""
|
||||||
|
state["message"] = "Hello"
|
||||||
|
return state
|
||||||
|
|
||||||
|
def process_node(self, state: Dict[str, Any]) -> Dict[str, Any]:
|
||||||
|
"""
|
||||||
|
Process node that appends to the message.
|
||||||
|
"""
|
||||||
|
state["message"] += " World"
|
||||||
|
return state
|
||||||
|
|
||||||
|
def end_node(self, state: Dict[str, Any]) -> Dict[str, Any]:
|
||||||
|
"""
|
||||||
|
End node that prints the final message.
|
||||||
|
"""
|
||||||
|
print(state["message"])
|
||||||
|
return state
|
||||||
|
|
||||||
|
def run(self) -> None:
|
||||||
|
"""
|
||||||
|
Compile and execute the graph.
|
||||||
|
"""
|
||||||
|
# Compile the graph into a runnable function
|
||||||
|
runnable = self.graph.compile()
|
||||||
|
|
||||||
|
# Execute the graph with an empty initial state
|
||||||
|
runnable({})
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
agent = SimpleAgent()
|
||||||
|
agent.run()
|
||||||
+9
-4
@@ -1,14 +1,19 @@
|
|||||||
{
|
{
|
||||||
"name": "self-correcting-agent",
|
"name": "self-correcting-agent",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"description": "A minimal self‑correcting agent using LangChain OpenAI provider",
|
"description": "A minimal Node.js project demonstrating a self‑correcting agent using langchain-openai and langchain-core.",
|
||||||
"main": "src/index.js",
|
"main": "src/index.js",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node src/index.js",
|
"start": "node src/index.js"
|
||||||
"test": "echo \"No tests defined\" && exit 0"
|
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"langchain-core": "^0.1.0",
|
||||||
"langchain-openai": "^0.1.0"
|
"langchain-openai": "^0.1.0"
|
||||||
}
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=18"
|
||||||
|
},
|
||||||
|
"author": "Your Name",
|
||||||
|
"license": "MIT"
|
||||||
}
|
}
|
||||||
+4
-2
@@ -1,2 +1,4 @@
|
|||||||
langchain-core>=0.2.0
|
langchain-core
|
||||||
langgraph>=0.0.1
|
langchain-openai
|
||||||
|
langchain-ollama
|
||||||
|
langgraph
|
||||||
+32
-12
@@ -1,17 +1,37 @@
|
|||||||
import { getResponse } from './agent.js';
|
import { OpenAI } from "langchain-openai";
|
||||||
|
import { BaseLLM } from "langchain-core";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Entry point for the self‑correcting agent demo.
|
* Simple self‑correcting agent demo.
|
||||||
|
* Requires an OpenAI API key set in the environment variable OPENAI_API_KEY.
|
||||||
*/
|
*/
|
||||||
export async function main() {
|
async function main() {
|
||||||
const prompt = 'Hello, world! What is the capital of France?';
|
// Ensure the API key is available
|
||||||
const answer = await getResponse(prompt);
|
if (!process.env.OPENAI_API_KEY) {
|
||||||
console.log('LLM response:', answer);
|
console.error("Error: OPENAI_API_KEY environment variable is not set.");
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Instantiate the OpenAI LLM provider
|
||||||
|
const llm = new OpenAI({
|
||||||
|
temperature: 0.7,
|
||||||
|
// The API key is automatically read from the environment variable
|
||||||
|
});
|
||||||
|
|
||||||
|
// Verify that llm is an instance of BaseLLM (from langchain-core)
|
||||||
|
if (!(llm instanceof BaseLLM)) {
|
||||||
|
console.error("Error: The LLM instance is not a BaseLLM.");
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Send a simple prompt to the LLM
|
||||||
|
const prompt = "Hello, world! What is the capital of France?";
|
||||||
|
try {
|
||||||
|
const response = await llm.invoke(prompt);
|
||||||
|
console.log("LLM response:", response);
|
||||||
|
} catch (error) {
|
||||||
|
console.error("Error invoking LLM:", error);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (import.meta.url === `file://${process.argv[1]}`) {
|
main();
|
||||||
main().catch((err) => {
|
|
||||||
console.error('Error:', err);
|
|
||||||
process.exit(1);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user