generated from kyegomez/Python-Package-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample.py
74 lines (60 loc) · 1.97 KB
/
example.py
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
from code_guardian.main import CodeGuardian
import os
from dotenv import load_dotenv
from swarms import Agent, OpenAIChat
load_dotenv()
# Get the OpenAI API key from the environment variable
api_key = os.getenv("OPENAI_API_KEY")
# Create an instance of the OpenAIChat class
model = OpenAIChat(
openai_api_key=api_key,
model_name="gpt-4o-mini",
temperature=0.1,
max_tokens=2000,
)
# Initialize the agent for generating unit tests
agent = Agent(
agent_name="Unit-Test-Generator-Agent", # Changed agent name
# system_prompt="Generate unit tests for the provided classes using pytest. Return the code in a code block and nothing else.", # Updated system prompt
llm=model,
max_loops=1,
autosave=True,
dashboard=False,
verbose=True,
dynamic_temperature_enabled=True,
saved_state_path="unit_test_agent.json", # Updated saved state path
user_name="swarms_corp",
retry_attempts=1,
context_length=200000,
return_step_meta=False,
# output_type="json",
)
# from swarm_models.base_embedding_model import BaseEmbeddingModel
from swarm_models.base_llm import BaseLLM # noqa: E402
from swarm_models.base_multimodal_model import BaseMultiModalModel
from swarm_models.fuyu import Fuyu # noqa: E402
from swarm_models.gpt4_vision_api import GPT4VisionAPI # noqa: E402
from swarm_models.huggingface import HuggingfaceLLM # noqa: E402
from swarm_models.idefics import Idefics # noqa: E402
#############################
# Classes you want to generate tests for
models_list = [
BaseLLM,
BaseMultiModalModel,
Fuyu,
GPT4VisionAPI,
HuggingfaceLLM,
Idefics,
]
# Initialize CodeGuardian and run
guardian = CodeGuardian(
classes=models_list, # classes to test
# agent=agent, # agent to use
dir_path="tests", # directory to save tests
package_name="swarm_models", # package name
module_name="swarm_models", # module name
# agent=prebuilt_agent,
# model=model,
agent=agent,
)
guardian.run()