File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1+ FROM python:3.11-slim
2+
3+ RUN apt-get update && apt-get upgrade -y && \
4+ useradd -m -s /bin/bash app
5+
6+ USER app
7+
8+ RUN pip install scrapegraphai
Original file line number Diff line number Diff line change 1212# Define the configuration for the graph
1313# ************************************************
1414
15- openai_key = os .getenv ("OPENAI_APIKEY " )
15+ gemini_key = os .getenv ("GOOGLE_APIKEY " )
1616
1717graph_config = {
1818 "llm" : {
19- "api_key" : openai_key ,
19+ "api_key" : gemini_key ,
2020 "model" : "gpt-3.5-turbo" ,
2121 },
2222}
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " scrapegraphai"
3- version = " 0.1.3 "
3+ version = " 0.1.4 "
44description = " A web scraping library based on LangChain which uses LLM and direct graph logic to create scraping pipelines."
55authors = [
66 " Marco Vinciguerra <[email protected] >" ,
You can’t perform that action at this time.
0 commit comments