CPT hinzugefügt
This commit is contained in:
parent
36b15d74e4
commit
255f34bf87
1 changed files with 7 additions and 7 deletions
|
|
@ -179,20 +179,20 @@ print(antwort_AI.choices[0].message.content)
|
||||||
|
|
||||||
prompt_org = passw['Prompt']['CptPrompt']
|
prompt_org = passw['Prompt']['CptPrompt']
|
||||||
|
|
||||||
info = {"Der Zielflughafen ist: " + dest.get("icao_code"), "Die Reisedauer beträgt ungefähr: " + block,
|
info = {"Zielflughafen: " + dest.get("icao_code"), "Reisedauer:" + block,
|
||||||
"Die Entfernung: " + distance + "nm",
|
"Entfernung: " + distance + "nm",
|
||||||
"Der getankte Sprit: " + fuel + "kg",
|
"Menge Sprit: " + fuel + "kg",
|
||||||
"An Bord befinden sich " + pax + "Passagiere",
|
"Passagieranzahl" + pax,
|
||||||
"Das Flugzeug ist eine " + aircraft_name,
|
"Flugzeugtyp:" + aircraft_name,
|
||||||
"Du freust dich auf den Flug und bedankst dich, das man sich für " + airline + " entschieden hat.",
|
"Du freust dich auf den Flug und bedankst dich, das man sich für " + airline + " entschieden hat.",
|
||||||
"Dein Name lautet " + passw['Prompt']['CptName'],
|
"Dein Name:" + passw['Prompt']['CptName'],
|
||||||
"Startflughafen: " + origin.get("icao_code"),
|
"Startflughafen: " + origin.get("icao_code"),
|
||||||
"sei dabei " + str(stimmung()),
|
"sei dabei " + str(stimmung()),
|
||||||
"Wetter am Ziel" + metar_dest,
|
"Wetter am Ziel" + metar_dest,
|
||||||
|
"Flugnummer" + general.get("flight_number"),
|
||||||
"Wetter am Start" + metar_origin}
|
"Wetter am Start" + metar_origin}
|
||||||
|
|
||||||
for i in info:
|
for i in info:
|
||||||
prompt_org = prompt_org + i
|
prompt_org = prompt_org + i
|
||||||
antwort_AI = ai(prompt_org)
|
antwort_AI = ai(prompt_org)
|
||||||
print(antwort_AI.choices[0].message.content)
|
print(antwort_AI.choices[0].message.content)
|
||||||
print(str(stimmung()))
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue