knight7561 commited on
Commit
250bb3a
·
verified ·
1 Parent(s): 4334d70

Adding agent structure

Browse files
Files changed (1) hide show
  1. app.py +98 -61
app.py CHANGED
@@ -1,64 +1,101 @@
1
- import gradio as gr
2
- from huggingface_hub import InferenceClient
3
-
4
- """
5
- For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
6
- """
7
- client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
8
-
9
-
10
- def respond(
11
- message,
12
- history: list[tuple[str, str]],
13
- system_message,
14
- max_tokens,
15
- temperature,
16
- top_p,
17
- ):
18
- messages = [{"role": "system", "content": system_message}]
19
-
20
- for val in history:
21
- if val[0]:
22
- messages.append({"role": "user", "content": val[0]})
23
- if val[1]:
24
- messages.append({"role": "assistant", "content": val[1]})
25
-
26
- messages.append({"role": "user", "content": message})
27
-
28
- response = ""
29
-
30
- for message in client.chat_completion(
31
- messages,
32
- max_tokens=max_tokens,
33
- stream=True,
34
- temperature=temperature,
35
- top_p=top_p,
36
- ):
37
- token = message.choices[0].delta.content
38
-
39
- response += token
40
- yield response
41
-
42
-
43
- """
44
- For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
45
- """
46
- demo = gr.ChatInterface(
47
- respond,
48
- additional_inputs=[
49
- gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
50
- gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
51
- gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
52
- gr.Slider(
53
- minimum=0.1,
54
- maximum=1.0,
55
- value=0.95,
56
- step=0.05,
57
- label="Top-p (nucleus sampling)",
58
- ),
59
- ],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  )
61
 
62
 
63
- if __name__ == "__main__":
64
- demo.launch()
 
1
+ from smolagents import CodeAgent,DuckDuckGoSearchTool, HfApiModel,load_tool,tool,FinalAnswerTool
2
+ import datetime
3
+ import requests
4
+ import pytz
5
+ import yaml
6
+ from langchain_community.document_loaders import ArxivLoader
7
+
8
+ from Gradio_UI import GradioUI
9
+
10
+ # Below is an example of a tool that does nothing. Amaze us with your creativity !
11
+ @tool
12
+ def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return type
13
+ #Keep this format for the description / args / args description but feel free to modify the tool
14
+ """A tool that does nothing yet
15
+ Args:
16
+ arg1: the first argument
17
+ arg2: the second argument
18
+ """
19
+ return "What magic will you build ?"
20
+
21
+
22
+ @tool
23
+ def arxiv_fetch_paper_tool(arxiv_id : str) -> str:
24
+ """ An Tool that would fetch research papers from ArXiV collection and parse it and return the PDF text
25
+ Args:
26
+ arxiv_id: id for the arxiv paper which would be like 2312.11805
27
+ Returns:
28
+ text of the paper content and title of the paper
29
+ """
30
+ from langchain_community.document_loaders import ArxivLoader
31
+ loader = ArxivLoader(query=arxiv_id)
32
+ docs = loader.load()
33
+ title = docs[0].metadata.get("title", "this paper")
34
+ return "\n".join([doc.page_content for doc in docs]), title
35
+
36
+
37
+
38
+
39
+ # @tool
40
+ # def write_python_code(coding_problem:str) -> str:
41
+ # """A tool that would code to solve user request in Python on a jupyter notebook environment
42
+ # Args:
43
+ # coding_problem: the problem statement needed to be solved by writing python code.
44
+ # Returns the code that has to be replaced in the notebook cell.
45
+ # """
46
+
47
+
48
+
49
+
50
+ @tool
51
+ def get_current_time_in_timezone(timezone: str) -> str:
52
+ """A tool that fetches the current local time in a specified timezone.
53
+ Args:
54
+ timezone: A string representing a valid timezone (e.g., 'America/New_York').
55
+ """
56
+ try:
57
+ # Create timezone object
58
+ tz = pytz.timezone(timezone)
59
+ # Get current time in that timezone
60
+ local_time = datetime.datetime.now(tz).strftime("%Y-%m-%d %H:%M:%S")
61
+ return f"The current local time in {timezone} is: {local_time}"
62
+ except Exception as e:
63
+ return f"Error fetching time for timezone '{timezone}': {str(e)}"
64
+
65
+
66
+ final_answer = FinalAnswerTool()
67
+
68
+ # If the agent does not answer, the model is overloaded, please use another model or the following Hugging Face Endpoint that also contains qwen2.5 coder:
69
+ # model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud'
70
+
71
+ model = HfApiModel(
72
+ max_tokens=2096,
73
+ temperature=0.5,
74
+ model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded
75
+ custom_role_conversions=None,
76
+ )
77
+
78
+
79
+ # Import tool from Hub
80
+ image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
81
+
82
+
83
+
84
+ with open("prompts.yaml", 'r') as stream:
85
+ prompt_templates = yaml.safe_load(stream)
86
+
87
+ agent = CodeAgent(
88
+ model=model,
89
+ tools=[final_answer,arxiv_fetch_paper_tool,image_generation_tool], ## add your tools here (don't remove final answer)
90
+ max_steps=6,
91
+ verbosity_level=1,
92
+ grammar=None,
93
+ planning_interval=None,
94
+ name=None,
95
+ description=None,
96
+ prompt_templates=prompt_templates,
97
+ additional_authorized_imports=['numpy','pandas','pip','matplotlib','SciPy','tensorflow','requests','notebook']
98
  )
99
 
100
 
101
+ GradioUI(agent).launch()