mirror of
https://github.com/OS-Copilot/OS-Copilot.git
synced 2026-01-10 12:38:06 -05:00
12 lines
571 B
Python
12 lines
571 B
Python
from oscopilot import FridayAgent, FridayExecutor, FridayPlanner, FridayRetriever, SelfLearner, SelfLearning, ToolManager, TextExtractor
|
|
from oscopilot.utils import setup_config
|
|
|
|
|
|
args = setup_config()
|
|
software_name = args.software_name
|
|
package_name = args.package_name
|
|
demo_file_path = args.demo_file_path
|
|
|
|
friday_agent = FridayAgent(FridayPlanner, FridayRetriever, FridayExecutor, ToolManager, config=args)
|
|
self_learning = SelfLearning(friday_agent, SelfLearner, ToolManager, args, TextExtractor)
|
|
self_learning.self_learning(software_name, package_name, demo_file_path) |