diff --git a/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/aerospace_engineering_agent.py b/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/aerospace_engineering_agent.py new file mode 100644 index 000000000..6a8d6009c --- /dev/null +++ b/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/aerospace_engineering_agent.py @@ -0,0 +1,14 @@ +from praisonaiagents import Agent + +agent = Agent( + instructions="You are an aerospace engineering AI agent. " + "Help users understand aerospace engineering concepts, " + "aircraft design, and space technology. Provide guidance on " + "aerodynamics, propulsion systems, materials science, " + "and satellite technology.", + llm="openrouter/moonshotai/kimi-k2" +) + +response = agent.start("Hello! I'm your aerospace engineering assistant. " + "How can I help you with aerospace engineering " + "and space technology today?") \ No newline at end of file diff --git a/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/bioinformatics_genomics_agent.py b/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/bioinformatics_genomics_agent.py new file mode 100644 index 000000000..fe10112ab --- /dev/null +++ b/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/bioinformatics_genomics_agent.py @@ -0,0 +1,14 @@ +from praisonaiagents import Agent + +agent = Agent( + instructions="You are a bioinformatics and genomics AI agent. " + "Help users understand bioinformatics, genomics, " + "and computational biology. Provide guidance on " + "DNA sequence analysis, protein structure prediction, " + "genetic algorithms, and biological data mining.", + llm="openrouter/moonshotai/kimi-k2" +) + +response = agent.start("Hello! I'm your bioinformatics and genomics assistant. " + "How can I help you with bioinformatics " + "and genomics research today?") \ No newline at end of file diff --git a/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/blockchain_defi_agent.py b/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/blockchain_defi_agent.py new file mode 100644 index 000000000..27e573921 --- /dev/null +++ b/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/blockchain_defi_agent.py @@ -0,0 +1,14 @@ +from praisonaiagents import Agent + +agent = Agent( + instructions="You are a blockchain and DeFi AI agent. " + "Help users understand blockchain technology, " + "decentralized finance, and cryptocurrency. Provide guidance on " + "smart contract development, DeFi protocols, " + "tokenomics, and blockchain security.", + llm="openrouter/moonshotai/kimi-k2" +) + +response = agent.start("Hello! I'm your blockchain and DeFi assistant. " + "How can I help you explore blockchain technology " + "and decentralized finance today?") \ No newline at end of file diff --git a/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/energy_renewables_agent.py b/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/energy_renewables_agent.py new file mode 100644 index 000000000..a17410425 --- /dev/null +++ b/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/energy_renewables_agent.py @@ -0,0 +1,14 @@ +from praisonaiagents import Agent + +agent = Agent( + instructions="You are an energy and renewables AI agent. " + "Help users understand renewable energy technologies, " + "energy systems, and sustainability. Provide guidance on " + "solar power, wind energy, energy storage, " + "and green technology solutions.", + llm="openrouter/moonshotai/kimi-k2" +) + +response = agent.start("Hello! I'm your energy and renewables assistant. " + "How can I help you with renewable energy " + "and sustainability today?") \ No newline at end of file diff --git a/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/iot_smart_cities_agent.py b/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/iot_smart_cities_agent.py new file mode 100644 index 000000000..a1261a27e --- /dev/null +++ b/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/iot_smart_cities_agent.py @@ -0,0 +1,14 @@ +from praisonaiagents import Agent + +agent = Agent( + instructions="You are an IoT and smart cities AI agent. " + "Help users understand Internet of Things, smart city " + "technologies, and connected systems. Provide guidance on " + "IoT device integration, smart infrastructure, " + "sensor networks, and urban technology solutions.", + llm="openrouter/moonshotai/kimi-k2" +) + +response = agent.start("Hello! I'm your IoT and smart cities assistant. " + "How can I help you with IoT and smart city " + "technologies today?") \ No newline at end of file diff --git a/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/metaverse_vr_agent.py b/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/metaverse_vr_agent.py new file mode 100644 index 000000000..d5d022cd1 --- /dev/null +++ b/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/metaverse_vr_agent.py @@ -0,0 +1,14 @@ +from praisonaiagents import Agent + +agent = Agent( + instructions="You are a metaverse and virtual reality AI agent. " + "Help users understand metaverse concepts, VR development, " + "and immersive technologies. Provide guidance on " + "3D modeling, VR programming, digital twins, " + "and virtual world design.", + llm="openrouter/moonshotai/kimi-k2" +) + +response = agent.start("Hello! I'm your metaverse and VR assistant. " + "How can I help you explore the metaverse " + "and virtual reality today?") \ No newline at end of file diff --git a/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/nanotechnology_materials_agent.py b/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/nanotechnology_materials_agent.py new file mode 100644 index 000000000..16216fa04 --- /dev/null +++ b/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/nanotechnology_materials_agent.py @@ -0,0 +1,14 @@ +from praisonaiagents import Agent + +agent = Agent( + instructions="You are a nanotechnology and materials AI agent. " + "Help users understand nanotechnology, advanced materials, " + "and material science. Provide guidance on " + "nanomaterials, material properties, fabrication techniques, " + "and applications in various industries.", + llm="openrouter/moonshotai/kimi-k2" +) + +response = agent.start("Hello! I'm your nanotechnology and materials assistant. " + "How can I help you with nanotechnology " + "and materials science today?") \ No newline at end of file diff --git a/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/quantum_ai_agent.py b/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/quantum_ai_agent.py new file mode 100644 index 000000000..4da0b6a9c --- /dev/null +++ b/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/quantum_ai_agent.py @@ -0,0 +1,14 @@ +from praisonaiagents import Agent + +agent = Agent( + instructions="You are a quantum AI agent. " + "Help users understand quantum artificial intelligence, " + "quantum machine learning, and quantum neural networks. " + "Provide guidance on quantum algorithms for AI, " + "quantum optimization, and hybrid quantum-classical systems.", + llm="openrouter/moonshotai/kimi-k2" +) + +response = agent.start("Hello! I'm your quantum AI assistant. " + "How can I help you explore quantum artificial " + "intelligence today?") \ No newline at end of file diff --git a/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/quantum_computing_agent.py b/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/quantum_computing_agent.py new file mode 100644 index 000000000..d65d6a6a7 --- /dev/null +++ b/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/quantum_computing_agent.py @@ -0,0 +1,14 @@ +from praisonaiagents import Agent + +agent = Agent( + instructions="You are a quantum computing AI agent. " + "Help users understand quantum computing concepts, " + "quantum algorithms, and quantum programming. Provide guidance on " + "quantum circuit design, quantum error correction, " + "quantum machine learning, and quantum cryptography.", + llm="openrouter/moonshotai/kimi-k2" +) + +response = agent.start("Hello! I'm your quantum computing assistant. " + "How can I help you explore quantum computing " + "and quantum programming today?") \ No newline at end of file diff --git a/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/robotics_automation_agent.py b/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/robotics_automation_agent.py new file mode 100644 index 000000000..a4877d9d6 --- /dev/null +++ b/examples/python/tools/exa-tool/Kimi2_Intelligent_Agents/robotics_automation_agent.py @@ -0,0 +1,14 @@ +from praisonaiagents import Agent + +agent = Agent( + instructions="You are a robotics and automation AI agent. " + "Help users understand robotics, automation systems, " + "and industrial applications. Provide guidance on " + "robot programming, automation workflows, " + "sensor integration, and robotic process automation.", + llm="openrouter/moonshotai/kimi-k2" +) + +response = agent.start("Hello! I'm your robotics and automation assistant. " + "How can I help you with robotics and " + "automation systems today?") \ No newline at end of file