Moved to grouparoo/grouparoo#1321
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
| """ | |
| This script provides testing Anthropic's tool search functionality across multiple scenarios. | |
| REQUIRED: | |
| - pip install arcadepy | |
| - pip install anthropic | |
| - export ANTHROPIC_API_KEY=<your_anthropic_api_key> | |
| - export ARCADE_API_KEY=<your_arcade_api_key> | |
| """ |
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
| -- RAW TABLE | |
| /* | |
| IDEAS: | |
| * Should this table be a Snowflake Stream? | |
| * https://docs.snowflake.com/en/sql-reference/sql/create-stream | |
| */ | |
| create or replace TABLE AIRBYTE_DEVELOP."airbyte_internal"."USERS_RAW" ( | |
| "_airbyte_raw_id" VARCHAR(16777216) NOT NULL, -- Added by Airbyte, this id links the rows in these 2 tables (UUID) |
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
| getSpec() { | |
| // start the returned spec with constant properties that are always needed in all ways the connector can be deployed | |
| let spec = { | |
| properties: { | |
| host: { required:true, type: string }, | |
| username: { required:true, type: string }, | |
| password: { required:true, type: string }, | |
| } | |
| }; | |
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 node:alpine | |
| LABEL maintainer="[email protected]" | |
| WORKDIR /airbyte/integration_code | |
| COPY package*.json ./ | |
| COPY . . | |
| RUN npm install | |
| RUN npm run build |
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
| # ssh root@<<YOUR IP>> | |
| # Install Docker | |
| sudo apt update | |
| sudo apt install apt-transport-https ca-certificates curl software-properties-common | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
| sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable" | |
| sudo apt update | |
| apt-cache policy docker-ce | |
| sudo apt install docker-ce -y |
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
| abstract class Greeter { | |
| abstract greet(who: string, message: string): void; | |
| } | |
| class ClassyGreeter extends Greeter { | |
| greet(who, message) { | |
| console.log(`Salutations, ${who}. ${message}`); | |
| } | |
| } |
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
| id | user_id | item | category | price | state | created_at | |
|---|---|---|---|---|---|---|---|
| 1 | 69 | 88 | Garden | 68.13 | successful | 2021-06-07 00:43:22.505 | |
| 2 | 155 | 25 | Grocery | 75.89 | successful | 2021-06-07 04:29:33.122 | |
| 3 | 560 | 59 | Books | 19.7 | successful | 2021-07-31 07:40:07.724 | |
| 4 | 562 | 95 | Games | 17.64 | successful | 2021-07-10 10:49:36.804 | |
| 5 | 64 | 24 | Kids | 76.08 | successful | 2021-07-28 18:38:26.248 | |
| 6 | 402 | 88 | Movies | 42.87 | successful | 2021-07-20 04:59:39.054 | |
| 7 | 319 | 67 | Garden | 22.85 | successful | 2021-07-22 18:17:16.081 | |
| 8 | 86 | 69 | Outdoors | 25.21 | successful | 2021-06-19 04:55:45.292 | |
| 9 | 585 | 51 | Grocery | 34.85 | successful | 2021-07-08 07:35:33.024 |
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
| #!/bin/bash | |
| # This script required ffmpeg and gifsicle | |
| # On OSX: `brew install ffmpeg gifsicle` | |
| SECONDS=0 | |
| INPUT_FILE=$1 | |
| BASENAME="${INPUT_FILE%.*}" | |
| OUTPUT_FILE="$BASENAME.gif" |
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
| // There is no more actionhero CLI (start, startCluster, etc). You make your own 'main' file. | |
| // This should make running in Docker, Serverless, etc easier. | |
| // This also removes `boot.js` | |
| import { Process, config, log } from '@actionhero/core' // we use NPM namespaces | |
| // The core Actionhero package is really small... and you can opt-in to the parts you want | |
| import WebServer from '@actionhero/web' | |
| import WebSocketServer from '@actionhero/websocket' | |
| import Cache from '@actionhero/cache' | |
| import Resque from '@actionhero/resque' |
NewerOlder