Skip to content

Commit 09092dc

Browse files
committed
chore: correct string escape sequences in test-core.yml
- Adjusted escape sequences for environment variable retrieval and print statements to ensure proper formatting and clarity in the workflow file.
1 parent d3e77ce commit 09092dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test-core.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ jobs:
151151
return 'INVALID_TYPE'
152152
153153
print('🔧 Direct PraisonAI API Key Check:')
154-
env_api_key = os.environ.get(\\"OPENAI_API_KEY\\", \\"NOT_SET\\")
154+
env_api_key = os.environ.get(\"OPENAI_API_KEY\", \"NOT_SET\")
155155
print(f'Environment OPENAI_API_KEY: {get_key_display_value(env_api_key)}...')
156156
157157
from praisonai import PraisonAI
@@ -163,7 +163,7 @@ jobs:
163163
164164
from praisonai.inc.models import PraisonAIModel
165165
166-
print('\\\\n🧪 Testing PraisonAIModel with explicit API key (CrewAI method):')
166+
print('\\n🧪 Testing PraisonAIModel with explicit API key (CrewAI method):')
167167
model_with_explicit_key = PraisonAIModel(
168168
model='openai/gpt-4o-mini',
169169
base_url=praisonai.config_list[0].get('base_url'),

0 commit comments

Comments
 (0)