Skip to content

Instantly share code, notes, and snippets.

View frantisek901's full-sized avatar

František Kalvas frantisek901

View GitHub Profile
import re
from enum import Enum
from langchain.schema import BaseMessage, SystemMessage
from pydantic import BaseModel
class Examples(Enum):
PLAN_EXAMPLES = [""]
{
"world_name": "Apocalypse Club",
"locations": [
{
"name": "Crisis Forum",
"description": "A heated arena where influential leaders, experts, and influencers debate which looming global catastrophe demands immediate policy attention. The forum sets the stage for apocalyptic predictions and competing arguments on whose crisis is the ultimate."
}
],
"agents": [
{

Keybase proof

I hereby claim:

  • I am frantisek901 on github.
  • I am francesko (https://keybase.io/francesko) on keybase.
  • I have a public key ASCBfbUhBPk5VQv6kk_Ia_rkpjD20TLFNSgqoM9mfezF2wo

To claim this, I am signing this object:

@frantisek901
frantisek901 / lorenz-animator.jl
Created May 9, 2021 04:09 — forked from tdunning/lorenz-animator.jl
Animates the evolution of an initially tight group of points ... my intro to Julia
using DifferentialEquations
using Plots
using Statistics
using LinearAlgebra
function lorenz!(du, u, p, t)
x, y, z = u
σ, ρ, β = p