Spaces:
Sleeping
Sleeping
File size: 1,209 Bytes
ae2a953 |
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 |
import cohere
# Initialize Cohere client
co = cohere.Client("nvnj")
def generate_helm_chart(prompt):
prompt = f"Generate a Kubernetes Helm chart for a microservice named '{service_name}' in YAML format."
response = co.generate(
model="command",
prompt=prompt,
max_tokens=300,
temperature=0.7,
)
return response.generations[0].text.strip()
# Example Usage
service_name = "example-service"
helm_chart = generate_helm_chart(service_name)
print(helm_chart)
def save_exact_output_to_file(output, file_name):
try:
# Save the exact string output to the file
with open(file_name, "w") as file:
file.write(output)
print(f"Output saved successfully to {file_name}")
except Exception as e:
print(f"Error saving output: {e}")
# Example Usage
if __name__ == "__main__":
service_name = "example-service"
try:
# Generate the Helm chart
helm_chart = generate_helm_chart(service_name)
# Save the output to a YAML file
file_name = f"{service_name}_helm_chart.yaml"
save_exact_output_to_file(helm_chart, file_name)
except Exception as e:
print(f"Error: {e}") |