Spaces:
Sleeping
Sleeping
File size: 4,323 Bytes
6255f8a 3b45de9 6255f8a 3b45de9 6255f8a 3b45de9 6255f8a 3b45de9 6255f8a 3b45de9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
import re
import random
import linecache
import subprocess
from langchain.prompts import PromptTemplate
from langchain.chat_models import ChatOpenAI
from langchain.chains import LLMChain
from langchain.llms import OpenAI
from langchain.chains import ConversationChain
from langchain.memory import ConversationBufferMemory
from langchain.prompts.chat import (
ChatPromptTemplate,
HumanMessagePromptTemplate,
)
import os
from dotenv import load_dotenv
from PIL import Image
class PlotCreator:
def __init__(self):
load_dotenv()
llm = ChatOpenAI(model_name="gpt-3.5-turbo", max_tokens=2000, temperature=0)
mavlink_data_prompt = PromptTemplate(
input_variables=["human_input", "file"],
template="You are an AI conversation agent that will be used for generating python scripts to plot mavlink data provided by the user. Please create a python script using matplotlib and pymavlink's mavutil to plot the data provided by the user. Please do not explain the code just return the script. Please plot each independent variable over time in seconds. Please save the plot to file named plot.png with at least 400 dpi. \n\nHUMAN: {human_input} \n\nplease read this data from the file {file}.",
)
self.chain = LLMChain(verbose=True, llm=llm, prompt=mavlink_data_prompt)
@staticmethod
def sample_lines(filename, num_lines=5):
with open(filename) as f:
total_lines = sum(1 for _ in f)
if total_lines < num_lines:
raise ValueError("File has fewer lines than the number of lines requested.")
line_numbers = random.sample(range(1, total_lines + 1), num_lines)
lines = [linecache.getline(filename, line_number).rstrip() for line_number in line_numbers]
return '\n'.join(lines)
@staticmethod
def extract_code_snippets(text):
pattern = r'```.*?\n(.*?)```'
snippets = re.findall(pattern, text, re.DOTALL | re.MULTILINE)
if len(snippets) == 0:
snippets = [text]
return snippets
@staticmethod
def write_plot_script(filename, text):
with open(filename, 'w') as file:
file.write(text)
@staticmethod
def attempt_to_fix_sctript(filename, error_message):
llm = ChatOpenAI(model_name="gpt-3.5-turbo", max_tokens=2000, temperature=0)
fix_plot_script_template = PromptTemplate(
input_variables=["error", "script"],
template="You are an AI agent that is designed to debug scripts created to plot mavlink data using matplotlib and pymavlink's mavutil. the following script produced this error: \n\n{script}\n\nThe error is: \n\n{error}\n\nPlease fix the script so that it produces the correct plot.",
)
# read script from file
with open(filename, 'r') as file:
script = file.read()
chain = LLMChain(verbose=True, llm=llm, prompt=fix_plot_script_template)
response = chain.run({"error": error_message, "script": script})
print(response)
code = PlotCreator.extract_code_snippets(response)
PlotCreator.write_plot_script("plot.py", code[0])
# run the script
os.system("python plot.py")
return code
def create_plot(self, human_input):
file = "data/2023-01-04 20-51-25.tlog"
# prompt the user for the what plot they would like to generate
# human_input = input("Please enter a description of the plot you would like to generate: ")
response = self.chain.run({"file": file, "human_input": human_input})
print(response)
# parse the code from the response
code = self.extract_code_snippets(response)
self.write_plot_script("plot.py", code[0])
# run the script if it doesn't work capture output and call attempt_to_fix_script
try:
subprocess.check_output(["python", "plot.py"], stderr=subprocess.STDOUT)
except subprocess.CalledProcessError as e:
print(e.output.decode())
code = self.attempt_to_fix_sctript("plot.py", e.output.decode())
except Exception as e:
print(e)
code = self.attempt_to_fix_sctript("plot.py", str(e))
return [("plot.png", None), code[0]]
|