File size: 8,678 Bytes
0a1d4cf 3e7266f 0a1d4cf 3e7266f 0a1d4cf 3e7266f 0a1d4cf 3e7266f 0a1d4cf 3e7266f 0a1d4cf 3e7266f 0a1d4cf 3e7266f 0a1d4cf |
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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 |
#!/usr/bin/env python3
"""
Test script for OpenRouter API connection with z-ai/glm-4.5-air:free model.
Tests basic functionality and tool calling capabilities.
"""
import json
import os
import sys
import logging
from dotenv import load_dotenv
from openai import OpenAI
# Load environment variables
load_dotenv()
# Model configuration
MODEL_NAME = "z-ai/glm-4.5-air:free"
def test_basic_connection():
"""Test basic API connection with a simple prompt."""
print("=" * 60)
print("Testing Basic OpenRouter Connection")
print("=" * 60)
try:
# Initialize OpenRouter client with the same configuration as app.py
openrouter_api_key = os.getenv("OPENROUTER_API_KEY")
if not openrouter_api_key:
print("β OPENROUTER_API_KEY not found in environment variables")
return False
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=openrouter_api_key
)
# Test with a simple prompt
messages = [
{"role": "user", "content": "Hello! Please respond with a simple greeting and your name."}
]
print("Sending test request to OpenRouter API...")
response = client.chat.completions.create(
model=MODEL_NAME,
messages=messages
)
# Extract and display the response
content = response.choices[0].message.content
print(f"β
SUCCESS: API connection works!")
print(f"Model: {response.model}")
print(f"Response: {content}")
print(f"Usage: {response.usage}")
return True
except Exception as e:
print(f"β FAILED: Basic connection test failed")
print(f"Error: {str(e)}")
return False
def test_tool_calling():
"""Test tool calling functionality."""
print("\n" + "=" * 60)
print("Testing Tool Calling Functionality")
print("=" * 60)
try:
# Initialize OpenRouter client
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.getenv("OPENROUTER_API_KEY")
)
# Define test tools (similar to app.py)
tools = [
{
"type": "function",
"function": {
"name": "get_weather",
"description": "Get current weather information",
"parameters": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "The city name for weather information"
}
},
"required": ["location"]
}
}
}
]
# Test prompt that should trigger tool calling
messages = [
{"role": "user", "content": "What's the weather like in New York?"}
]
print("Sending test request with tool calling capability...")
response = client.chat.completions.create(
model=MODEL_NAME,
messages=messages,
tools=tools
)
# Analyze the response
finish_reason = response.choices[0].finish_reason
message = response.choices[0].message
print(f"β
SUCCESS: Tool calling test completed!")
print(f"Model: {response.model}")
print(f"Finish Reason: {finish_reason}")
if finish_reason == "tool_calls":
print("π§ Tool calls detected:")
if hasattr(message, 'tool_calls') and message.tool_calls:
for tool_call in message.tool_calls:
print(f" - Tool: {tool_call.function.name}")
print(f" - Arguments: {tool_call.function.arguments}")
else:
print(" - No tool calls found in response")
else:
print(f" - Response content: {message.content}")
print(f"Usage: {response.usage}")
return True
except Exception as e:
print(f"β FAILED: Tool calling test failed")
print(f"Error: {str(e)}")
return False
def test_error_handling():
"""Test error handling with invalid requests."""
print("\n" + "=" * 60)
print("Testing Error Handling")
print("=" * 60)
try:
# Initialize OpenRouter client
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.getenv("OPENROUTER_API_KEY")
)
# Test with empty messages
print("Testing empty messages...")
try:
response = client.chat.completions.create(
model="z-ai/glm-4.5-air:free",
messages=[]
)
print("β οΈ Unexpected: Empty messages request succeeded")
except Exception as e:
print(f"β
Expected error caught: {str(e)}")
# Test with invalid model
print("Testing invalid model...")
try:
response = client.chat.completions.create(
model="invalid-model-name",
messages=[{"role": "user", "content": "Hello"}]
)
print("β οΈ Unexpected: Invalid model request succeeded")
except Exception as e:
print(f"β
Expected error caught: {str(e)}")
print("β
SUCCESS: Error handling tests completed")
return True
except Exception as e:
print(f"β FAILED: Error handling test failed")
print(f"Error: {str(e)}")
return False
def test_conversation_flow():
"""Test a multi-turn conversation."""
print("\n" + "=" * 60)
print("Testing Multi-turn Conversation")
print("=" * 60)
try:
# Initialize OpenRouter client
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.getenv("OPENROUTER_API_KEY")
)
# Simulate a conversation
messages = [
{"role": "user", "content": "Hello! Can you help me understand what AI is?"}
]
print("Starting conversation flow...")
# First turn
response = client.chat.completions.create(
model=MODEL_NAME,
messages=messages
)
content = response.choices[0].message.content
print(f"Assistant: {content}")
# Second turn
messages.append({"role": "assistant", "content": content})
messages.append({"role": "user", "content": "Can you give me a simple example?"})
response = client.chat.completions.create(
model=MODEL_NAME,
messages=messages
)
content = response.choices[0].message.content
print(f"Assistant: {content}")
print("β
SUCCESS: Multi-turn conversation completed")
return True
except Exception as e:
print(f"β FAILED: Conversation flow test failed")
print(f"Error: {str(e)}")
return False
def main():
"""Main test function."""
print("π Starting OpenRouter API Connection Tests")
print(f"Model: {MODEL_NAME}")
print(f"API Base URL: https://openrouter.ai/api/v1")
# Run all tests
tests = [
("Basic Connection", test_basic_connection),
("Tool Calling", test_tool_calling),
("Error Handling", test_error_handling),
("Conversation Flow", test_conversation_flow)
]
results = []
for test_name, test_func in tests:
try:
result = test_func()
results.append((test_name, result))
except Exception as e:
print(f"β CRITICAL ERROR in {test_name}: {str(e)}")
results.append((test_name, False))
# Summary
print("\n" + "=" * 60)
print("TEST SUMMARY")
print("=" * 60)
passed = 0
total = len(results)
for test_name, result in results:
status = "β
PASSED" if result else "β FAILED"
print(f"{status}: {test_name}")
if result:
passed += 1
print(f"\nOverall: {passed}/{total} tests passed")
if passed == total:
print("π All tests passed! OpenRouter integration is working correctly.")
return 0
else:
print("β οΈ Some tests failed. Please check the configuration and API credentials.")
return 1
if __name__ == "__main__":
sys.exit(main()) |