WC da Dii
|
Escritorio da Dii
|
Marquise
|
Cozinha
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
| # AUDIOBOOK | |
| The Giver http://commons.wikimedia.org/wiki/Special:FilePath/The%20Giver.ogg | |
| The Legend of Sleepy Hollow http://commons.wikimedia.org/wiki/Special:FilePath/LibriVox%20-%20Sleepy%20Hollow%20-%20Washington%20Irving.ogg | |
| ['The Wizard of Oz', 'The Wonderful Wizard of Oz'] http://commons.wikimedia.org/wiki/Special:FilePath/En%20the%20wonderful%20wizard%20of%20oz.ogg | |
| Ozymandias http://commons.wikimedia.org/wiki/Special:FilePath/Percy%20Shellys%20Ozymandias.ogg | |
| 竹取物語 http://commons.wikimedia.org/wiki/Special:FilePath/Japanesefairytales%2009%20ozaki%2064kb.ogg | |
| The Nameless City http://commons.wikimedia.org/wiki/Special:FilePath/LibriVox%20-%20nameless%20city%20lovecraft%20sc.ogg | |
| Dagon http://commons.wikimedia.org/wiki/Special:FilePath/Dagon%20lovecraft%20mras.ogg | |
| Polaris http://commons.wikimedia.org/wiki/Special:FilePath/LibriVox%20-%20polaris%20lovecraft%20jp.ogg | |
| An Occurrence at Owl Creek Bridge http://commons.wikimedia.org/wiki/Special:FilePath/Owlcreekbridge%20bierce%20ab.ogg |
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 os | |
| import os.path | |
| import shutil | |
| import zipfile | |
| from pathlib import Path | |
| from typing import Iterable | |
| import click | |
| import requests | |
| from textual.app import App, ComposeResult |
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
| # adapted from https://github.com/kaka-lin/object-detection | |
| # MIT License | |
| import colorsys | |
| import random | |
| import time | |
| import cv2 | |
| import numpy as np | |
| import tensorflow as tf |
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
| from time import sleep | |
| import imagezmq | |
| import zmq # needed because we will be using zmq socket options & exceptions | |
| from imutils.video import VideoStream | |
| time_between_restarts = 5 # number of seconds to sleep between sender restarts | |
| def sender_start(connect_to=None): |
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 typing import List | |
| from llama_cpp import ChatCompletionMessage, Llama, LlamaGrammar | |
| TRAINING_INTENTS = [ | |
| { | |
| "name": "get_current_weather", | |
| "description": "Get the current weather in a given location", | |
| "parameters": { |
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 random | |
| from functools import wraps | |
| import requests | |
| from ovos_solver_openai_persona.engines import OpenAIChatCompletionsSolver | |
| def rewrite(prompt: str): | |
| def layer_handler(func): |
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 concurrent.futures | |
| import random | |
| import time | |
| class ParallelWorkers: | |
| workers = 12 | |
| def do_work(self, arg_list, match_func): |
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 threading import Lock | |
| import requests | |
| import time | |
| from zeroconf import ServiceBrowser, ServiceStateChange | |
| from zeroconf import Zeroconf | |
| IDENTIFIER = "restsysadmin" | |
| HA_URL = "http://192.168.1.8:8123" |
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 contextlib | |
| import json | |
| import logging | |
| import time | |
| import uuid | |
| from abc import ABCMeta | |
| from abc import abstractmethod | |
| from functools import wraps | |
| from os import environ | |
| from os import getenv |