sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh
| // IMPORTANT - Add your API keys here. Be careful not to publish them. | |
| process.env.OPENAI_API_KEY = "sk-..."; | |
| process.env.TAVILY_API_KEY = "tvly-..."; | |
| import { TavilySearchResults } from "@langchain/community/tools/tavily_search"; | |
| import { ChatOpenAI } from "@langchain/openai"; | |
| import { MemorySaver } from "@langchain/langgraph"; | |
| import { HumanMessage } from "@langchain/core/messages"; | |
| import { createReactAgent } from "@langchain/langgraph/prebuilt"; |
| { | |
| "models": [ | |
| { | |
| "title": "Qwen2.5-Coder-7B", | |
| "provider": "ollama", | |
| "model": "Qwen2.5-Coder-7B-Instruct-Q6_K:latest", | |
| "apiBase": "https://your_ollama_server" | |
| } | |
| ], | |
| "tabAutocompleteModel": { |
See also:
| Service | Type | Storage | Limitations |
|---|---|---|---|
| Amazon DynamoDB | 25 GB | ||
| Amazon RDS | |||
| Azure SQL Database | MS SQL Server | ||
| 👉 Clever Cloud | PostgreSQL, MySQL, MongoDB, Redis | 256 MB (PostgreSQL) | Max 5 connections (PostgreSQL) |
This guide will walk you through creating a public Google Workspace Add-on, and launching it in the Google Workspace Marketplace for as free as possible.
This guide was written as I developed and launched my first add-on: Nacho Auto Vacation for Gmail™.
| PHP 5.6: | |
| RUN apt-get update \ | |
| && apt-get install -y libmemcached11 libmemcachedutil2 build-essential libmemcached-dev libz-dev \ | |
| && pecl install memcached \ | |
| && echo extension=memcached.so >> /usr/local/etc/php/conf.d/memcached.ini \ | |
| && apt-get remove -y build-essential libmemcached-dev libz-dev \ | |
| && apt-get autoremove -y \ | |
| && apt-get clean \ | |
| && rm -rf /tmp/pear |