CoolFace
Apppublic

CameronMomtaz/Vida

sourceHugging Faceupdated 4mo agoView on Hugging Face
0likes
app.py135 linesDownload Raw Back to root
1from dotenv import load_dotenv
2from openai import OpenAI
3import json
4import os
5import requests
6from pypdf import PdfReader
7import gradio as gr
8
9
10load_dotenv(override=True)
11
12def push(text):
13    requests.post(
14        "https://api.pushover.net/1/messages.json",
15        data={
16            "token": os.getenv("PUSHOVER_TOKEN"),
17            "user": os.getenv("PUSHOVER_USER"),
18            "message": text,
19        }
20    )
21
22
23def record_user_details(email, name="Name not provided", notes="not provided"):
24    push(f"Recording {name} with email {email} and notes {notes}")
25    return {"recorded": "ok"}
26
27def record_unknown_question(question):
28    push(f"Recording {question}")
29    return {"recorded": "ok"}
30
31record_user_details_json = {
32    "name": "record_user_details",
33    "description": "Use this tool to record that a user is interested in being in touch and provided an email address",
34    "parameters": {
35        "type": "object",
36        "properties": {
37            "email": {
38                "type": "string",
39                "description": "The email address of this user"
40            },
41            "name": {
42                "type": "string",
43                "description": "The user's name, if they provided it"
44            }
45            ,
46            "notes": {
47                "type": "string",
48                "description": "Any additional information about the conversation that's worth recording to give context"
49            }
50        },
51        "required": ["email"],
52        "additionalProperties": False
53    }
54}
55
56record_unknown_question_json = {
57    "name": "record_unknown_question",
58    "description": "Always use this tool to record any question that couldn't be answered as you didn't know the answer",
59    "parameters": {
60        "type": "object",
61        "properties": {
62            "question": {
63                "type": "string",
64                "description": "The question that couldn't be answered"
65            },
66        },
67        "required": ["question"],
68        "additionalProperties": False
69    }
70}
71
72tools = [{"type": "function", "function": record_user_details_json},
73        {"type": "function", "function": record_unknown_question_json}]
74
75
76class Me:
77
78    def __init__(self):
79        self.openai = OpenAI()
80        self.name = "Cameron Momtaz"
81        reader = PdfReader("me/Profile.pdf")
82        self.linkedin = ""
83        for page in reader.pages:
84            text = page.extract_text()
85            if text:
86                self.linkedin += text
87        with open("me/Vida_full.txt", "r", encoding="utf-8") as f:
88            self.summary = f.read()
89
90
91    def handle_tool_call(self, tool_calls):
92        results = []
93        for tool_call in tool_calls:
94            tool_name = tool_call.function.name
95            arguments = json.loads(tool_call.function.arguments)
96            print(f"Tool called: {tool_name}", flush=True)
97            tool = globals().get(tool_name)
98            result = tool(**arguments) if tool else {}
99            results.append({"role": "tool","content": json.dumps(result),"tool_call_id": tool_call.id})
100        return results
101    
102    def system_prompt(self):
103        system_prompt = f"You are acting as a mustang mare horse owned by {self.name} named Vida.  You are a horse archery horse and you very much enjoy doing horse archery with your person. \
104        You are given a part of an interview that {self.name} did about horse archery. You are the young horse that {self.name } is talking about. \
105        If you don't know the answer to any question, use your record_unknown_question tool to record the question \
106        that you couldn't answer. \
107        If the user is engaging in discussion, try to steer them towards getting in touch via email; \
108        ask for their email and record it using your record_user_details tool. "
109
110        system_prompt += f"\n\n## This is part of the interview that {self.name} did about horse archery 3 years ago:\n{self.summary}\n\n## LinkedIn Profile:\n{self.linkedin}\n\n"
111        system_prompt += f"With this context, please chat with the user, always staying in character as {self.name}'s horse."
112
113        
114        return system_prompt
115    
116    def chat(self, message, history):
117        messages = [{"role": "system", "content": self.system_prompt()}] + history + [{"role": "user", "content": message}]
118        done = False
119        while not done:
120            response = self.openai.chat.completions.create(model="gpt-4o-mini", messages=messages, tools=tools)
121            if response.choices[0].finish_reason=="tool_calls":
122                message = response.choices[0].message
123                tool_calls = message.tool_calls
124                results = self.handle_tool_call(tool_calls)
125                messages.append(message)
126                messages.extend(results)
127            else:
128                done = True
129        return response.choices[0].message.content
130    
131
132if __name__ == "__main__":
133    me = Me()
134    gr.ChatInterface(me.chat, type="messages").launch()
135