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
[Skip to content](#overview) | |
[Star and contribute](https://github.com/griptape-ai/griptape) to Griptape on GitHub! |
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
[Skip to content](#overview) | |
[Star and contribute](https://github.com/griptape-ai/griptape) to Griptape on GitHub! | |
[![logo](../../../assets/img/griptape-mark-square-light.svg)](../../.. "Griptape Docs") | |
Griptape Docs | |
SQL Drivers |
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
from dotenv import load_dotenv | |
from griptape.drivers import MarkdownifyWebScraperDriver | |
from griptape.structures import Agent | |
from griptape.loaders import WebLoader | |
from griptape.tools import WebScraper | |
load_dotenv() # take environment variables from .env. | |
url = "https://www.google.com/about/careers/applications/jobs/results#!t=jo&jid=127025001&" |
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
from dotenv import load_dotenv | |
from griptape.drivers import MarkdownifyWebScraperDriver | |
from griptape.structures import Agent | |
from griptape.loaders import WebLoader | |
from griptape.tools import TaskMemoryClient, WebScraper | |
load_dotenv() | |
url = "https://www.kantata.com/careers" |
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
Bar |
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
#!/bin/sh | |
## | |
# Install autoconf, automake and libtool smoothly on Mac OS X. | |
# Newer versions of these libraries are available and may work better on OS X | |
# | |
# This script is originally from http://jsdelfino.blogspot.com.au/2012/08/autoconf-and-automake-on-mac-os-x.html | |
# | |
export build=~/devtools # or wherever you'd like to build |