This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
from openai import OpenAI | |
from duckduckgo_search import DDGS | |
import requests | |
from html2text import HTML2Text | |
client = OpenAI() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
terraform { | |
required_providers { | |
aws = { | |
source = "hashicorp/aws" | |
version = "5.0.0" | |
} | |
} | |
} | |
resource "aws_eks_cluster" "main" { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
patch: { | |
pattern: { | |
abc: string | |
a: int | |
} | |
result: { | |
abc: pattern.abc | |
id: "id-\(pattern.a*2)" |