This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import re | |
import paramiko | |
import json | |
from typing import Union, List, Dict | |
from langchain_community.llms import Ollama | |
from langchain_community.tools import tool | |
from langchain.agents import AgentExecutor, create_react_agent | |
from langchain_core.prompts import PromptTemplate |