This file has been truncated, but you can view the full file.
This file contains 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
{ | |
"id": "chatcmpl-Afdl8zH5y8xDqqdZi7UiPyYZfkP58", | |
"object": "chat.completion", | |
"created": 1734487646, | |
"model": "gpt-4o-audio-preview-2024-12-17", | |
"choices": [ | |
{ | |
"index": 0, | |
"message": { |
This file has been truncated, but you can view the full file.
This file contains 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
{ | |
"id": "chatcmpl-AfdkL95RjVZiUuJIUWdS0CCi7iM0S", | |
"object": "chat.completion", | |
"created": 1734487597, | |
"model": "gpt-4o-mini-audio-preview-2024-12-17", | |
"choices": [ | |
{ | |
"index": 0, | |
"message": { |
This file has been truncated, but you can view the full file.
This file contains 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
{ | |
"id": "chatcmpl-AfZjInFYyuKnJGB7UeC613oqPJFyF", | |
"object": "chat.completion", | |
"created": 1734472156, | |
"model": "gpt-4o-audio-preview-2024-12-17", | |
"choices": [ | |
{ | |
"index": 0, | |
"message": { |
This file contains 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
{ | |
"id": "chatcmpl-AYkFZgbbiEHMbPep0zSJqZgKy98tb", | |
"object": "chat.completion", | |
"created": 1732844301, | |
"model": "gpt-4o-audio-preview-2024-10-01", | |
"choices": [ | |
{ | |
"index": 0, | |
"message": { | |
"role": "assistant", |
This file contains 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
{ | |
"id": "chatcmpl-AYcVyamO3LWB0bHxdEce5LIQFxiyr", | |
"object": "chat.completion", | |
"created": 1732814566, | |
"model": "gpt-4o-audio-preview-2024-10-01", | |
"choices": [ | |
{ | |
"index": 0, | |
"message": { | |
"role": "assistant", |
This file contains 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
{ | |
"id": "chatcmpl-AYcUExCrHXAgXBMCwrAZMgEzCo3FI", | |
"object": "chat.completion", | |
"created": 1732814458, | |
"model": "gpt-4o-audio-preview-2024-10-01", | |
"choices": [ | |
{ | |
"index": 0, | |
"message": { | |
"role": "assistant", |
This file contains 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
{ | |
"id": "chatcmpl-AYcOayqBxD4u71IOw9suremupLmnB", | |
"object": "chat.completion", | |
"created": 1732814108, | |
"model": "gpt-4o-audio-preview-2024-10-01", | |
"choices": [ | |
{ | |
"index": 0, | |
"message": { | |
"role": "assistant", |
This file contains 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
# /// script | |
# dependencies = [ | |
# "atproto" | |
# ] | |
# /// | |
from atproto import Client | |
import getpass | |
import time |
This file contains 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
# /// script | |
# dependencies = [ | |
# "SpeechRecognition", | |
# "mlx-whisper", | |
# "pyaudio", | |
# ] | |
# /// | |
import speech_recognition as sr | |
import numpy as np |
This file contains 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
/** | |
* Creates a private GitHub Gist | |
* @param {string} description - Gist description | |
* @param {Object.<string, string>} files - Object with filenames as keys and content as values | |
* @param {string} token - GitHub Personal Access Token with gist scope | |
* @returns {Promise<Object>} - GitHub Gist API response object | |
* @throws {Error} - If the API request fails | |
*/ | |
async function createPrivateGist(description, files, token) { | |
if (!token) { |
NewerOlder