Updated formatting
This commit is contained in:
@@ -4,8 +4,8 @@ An AI Agent to generate test CSV files for a Pandas application.
|
|||||||
|
|
||||||
## .env file
|
## .env file
|
||||||
Environment Variables:
|
Environment Variables:
|
||||||
- OPEN_AI_APK_KEY - The API key acquired from OpenAI
|
- OPENAI_APK_KEY - The API key acquired from OpenAI
|
||||||
- OPEN_AI_MODEL - The AI Model selected based on cost vs performance
|
- OPENAI_MODEL - The AI Model selected based on cost vs performance
|
||||||
|
|
||||||
## Setup (Mac instructions)
|
## Setup (Mac instructions)
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
class CSV_Data:
|
class CSV_Data:
|
||||||
se_names = ['Nick Kalar', 'Michelle Crawford', 'Jacob Yero', 'Jeff Singleton', 'Kevin Von Stork']
|
se_names = [
|
||||||
|
'Nick Kalar',
|
||||||
|
'Michelle Crawford',
|
||||||
|
'Jacob Yero',
|
||||||
|
'Jeff Singleton',
|
||||||
|
'Kevin Von Stork',
|
||||||
|
]
|
||||||
configuration_items = [
|
configuration_items = [
|
||||||
'KPS Hardware',
|
'KPS Hardware',
|
||||||
'Bump Bar',
|
'Bump Bar',
|
||||||
@@ -46,4 +52,9 @@ class CSV_Data:
|
|||||||
'MIA',
|
'MIA',
|
||||||
'DEN',
|
'DEN',
|
||||||
]
|
]
|
||||||
ticket_state = ['P1 - Critical', 'P2 - High', 'P3 - Medium', 'P4 - Low']
|
ticket_state = [
|
||||||
|
'P1 - Critical',
|
||||||
|
'P2 - High',
|
||||||
|
'P3 - Medium',
|
||||||
|
'P4 - Low',
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user