Here's a list of all the available timezones for the Astrologer API
Africa/Abidjan
Africa/Accra
Africa/Addis_Ababa
Africa/Algiers
Africa/Asmara
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Page Title</title> | |
<meta name="description" content="Webpage for xxxx"> | |
<!-- http://meyerweb.com/eric/tools/css/reset/ --> | |
<link rel="stylesheet" href="css/reset/reset.css"> | |
<!--[if lt IE 9]> | |
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script> |
import studio from '@theatre/studio'; | |
import { studioResetExtention } from './studioResetExtention'; | |
// just extend studio | |
studio.extend(studioResetExtention); | |
studio.initialize(); |
import puppeteer from 'puppeteer'; | |
import { BingChat } from 'bing-chat' | |
async function example() { | |
const api = new BingChat({ | |
cookie: process.env.BING_COOKIE | |
}) | |
const res = await api.sendMessage('Hello World!') | |
console.log(res.text) |
import openai | |
import elevenlabs | |
# Uncomment the following lines to set the API keys | |
openai.api_key = "key_here" | |
elevenlabs.set_api_key("key_here") | |
def write(prompt: str): | |
for chunk in openai.ChatCompletion.create( | |
model="gpt-3.5-turbo-0301", |