|
|
|
|
|
""" |
|
|
Test script for improved Ollama function calling |
|
|
""" |
|
|
|
|
|
import sys |
|
|
import os |
|
|
from pathlib import Path |
|
|
|
|
|
|
|
|
sys.path.insert(0, str(Path(__file__).parent / 'atles')) |
|
|
|
|
|
def test_function_calling(): |
|
|
"""Test the improved function calling capabilities.""" |
|
|
print("π§ͺ Testing Improved Ollama Function Calling...") |
|
|
print("=" * 60) |
|
|
|
|
|
try: |
|
|
from atles.ollama_client_enhanced import OllamaFunctionCaller |
|
|
|
|
|
|
|
|
print("π± Creating Enhanced Ollama Client...") |
|
|
client = OllamaFunctionCaller() |
|
|
|
|
|
|
|
|
print("π Checking Ollama availability...") |
|
|
if not client.is_available(): |
|
|
print("β Ollama is not running. Please start Ollama with: ollama serve") |
|
|
return |
|
|
|
|
|
print("β
Ollama is available!") |
|
|
|
|
|
|
|
|
print("\nπ§ Available Functions:") |
|
|
schema = client.get_function_schema() |
|
|
for func in schema["functions"]: |
|
|
print(f" β’ {func['name']}: {func['description']}") |
|
|
|
|
|
|
|
|
print("\nπ§ͺ Testing Direct Function Execution...") |
|
|
|
|
|
|
|
|
print("π Testing search_code function...") |
|
|
try: |
|
|
result = client.search_code_datasets("python flask", "python", "github_code") |
|
|
print(f" β
Found {len(result)} code examples") |
|
|
if result: |
|
|
first_result = result[0] |
|
|
print(f" - Example: {first_result.get('title', 'No title')}") |
|
|
except Exception as e: |
|
|
print(f" β search_code failed: {e}") |
|
|
|
|
|
|
|
|
print("\nπ» Testing get_system_info function...") |
|
|
try: |
|
|
info = client.get_system_info() |
|
|
print(f" β
Platform: {info.get('platform', 'Unknown')}") |
|
|
print(f" β
Python: {info.get('python_version', 'Unknown')}") |
|
|
except Exception as e: |
|
|
print(f" β get_system_info failed: {e}") |
|
|
|
|
|
|
|
|
print("\nπ Testing list_files function...") |
|
|
try: |
|
|
result = client.list_files(".", "*.py") |
|
|
print(f" β
Found {len(result)} Python files") |
|
|
for file in result[:3]: |
|
|
print(f" - {file}") |
|
|
except Exception as e: |
|
|
print(f" β list_files failed: {e}") |
|
|
|
|
|
|
|
|
print("\nπ Testing Function Call Handling...") |
|
|
|
|
|
|
|
|
test_response1 = "FUNCTION_CALL:get_system_info:{}" |
|
|
print(f" Testing format 1: {test_response1}") |
|
|
result1 = client.handle_function_call(test_response1) |
|
|
print(f" Result: {result1[:100]}...") |
|
|
|
|
|
|
|
|
test_response2 = "get_system_info:{}" |
|
|
print(f" Testing format 2: {test_response2}") |
|
|
result2 = client.handle_function_call(test_response2) |
|
|
print(f" Result: {result2[:100]}...") |
|
|
|
|
|
|
|
|
test_response3 = 'search_code:{"query": "python flask", "language": "python"}' |
|
|
print(f" Testing format 3: {test_response3}") |
|
|
result3 = client.handle_function_call(test_response3) |
|
|
print(f" Result: {result3[:100]}...") |
|
|
|
|
|
|
|
|
client.close() |
|
|
print("\nβ
Function calling test completed!") |
|
|
|
|
|
except Exception as e: |
|
|
print(f"β Test failed: {e}") |
|
|
import traceback |
|
|
traceback.print_exc() |
|
|
|
|
|
if __name__ == "__main__": |
|
|
test_function_calling() |
|
|
|