dgl1797 commited on
Commit
f244f8d
·
1 Parent(s): 6065fb1

package fix

Browse files
local.ipynb CHANGED
@@ -10,7 +10,7 @@
10
  },
11
  {
12
  "cell_type": "code",
13
- "execution_count": null,
14
  "id": "660cfadd",
15
  "metadata": {},
16
  "outputs": [
@@ -120,13 +120,13 @@
120
  "freq 15 1 "
121
  ]
122
  },
123
- "execution_count": 8,
124
  "metadata": {},
125
  "output_type": "execute_result"
126
  }
127
  ],
128
  "source": [
129
- "from connectors import fetch_questions\n",
130
  "from datasets import load_dataset\n",
131
  "\n",
132
  "DEFAULT_API_URL = \"https://agents-course-unit4-scoring.hf.space\"\n",
 
10
  },
11
  {
12
  "cell_type": "code",
13
+ "execution_count": 9,
14
  "id": "660cfadd",
15
  "metadata": {},
16
  "outputs": [
 
120
  "freq 15 1 "
121
  ]
122
  },
123
+ "execution_count": 9,
124
  "metadata": {},
125
  "output_type": "execute_result"
126
  }
127
  ],
128
  "source": [
129
+ "from src.connectors import fetch_questions\n",
130
  "from datasets import load_dataset\n",
131
  "\n",
132
  "DEFAULT_API_URL = \"https://agents-course-unit4-scoring.hf.space\"\n",
src/__init__.py CHANGED
@@ -1,3 +1,4 @@
1
  from . import agent
 
2
 
3
- __all__ = ["agent"]
 
1
  from . import agent
2
+ from . import connectors
3
 
4
+ __all__ = ["agent", "connectors"]
connectors.py → src/connectors.py RENAMED
File without changes