Skip to content

Commit 57849b5

Browse files
committed
update
1 parent 1f581fd commit 57849b5

File tree

8 files changed

+13
-48
lines changed

8 files changed

+13
-48
lines changed

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ build:
1616

1717
# Build documentation in the "docs/" directory with Sphinx
1818
sphinx:
19-
configuration: conf.py
19+
configuration: docs/conf.py
2020
# You can configure Sphinx to use a different builder, for instance use the dirhtml builder for simpler URLs
2121
# builder: "dirhtml"
2222
# Fail on all warnings to avoid broken references

Makefile renamed to docs/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# from the environment for the first two.
66
SPHINXOPTS ?=
77
SPHINXBUILD ?= sphinx-build
8-
SOURCEDIR = .
9-
BUILDDIR = _build
8+
SOURCEDIR = source
9+
BUILDDIR = build
1010

1111
# Put it first so that "make" without argument is like "make help".
1212
help:

make.bat renamed to docs/make.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ REM Command file for Sphinx documentation
77
if "%SPHINXBUILD%" == "" (
88
set SPHINXBUILD=sphinx-build
99
)
10-
set SOURCEDIR=.
11-
set BUILDDIR=_build
10+
set SOURCEDIR=source
11+
set BUILDDIR=build
1212

1313
%SPHINXBUILD% >NUL 2>NUL
1414
if errorlevel 9009 (

docs/source/agentlab.analyze.rst

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,6 @@ agentlab.analyze.agent\_xray module
1212
:undoc-members:
1313
:show-inheritance:
1414

15-
agentlab.analyze.error\_categorization module
16-
---------------------------------------------
17-
18-
.. automodule:: agentlab.analyze.error_categorization
19-
:members:
20-
:undoc-members:
21-
:show-inheritance:
22-
2315
agentlab.analyze.inspect\_results module
2416
----------------------------------------
2517

@@ -28,14 +20,6 @@ agentlab.analyze.inspect\_results module
2820
:undoc-members:
2921
:show-inheritance:
3022

31-
agentlab.analyze.plot\_tools module
32-
-----------------------------------
33-
34-
.. automodule:: agentlab.analyze.plot_tools
35-
:members:
36-
:undoc-members:
37-
:show-inheritance:
38-
3923
Module contents
4024
---------------
4125

docs/source/agentlab.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ Subpackages
1010
agentlab.agents
1111
agentlab.analyze
1212
agentlab.llm
13-
agentlab.utils
1413

1514
Submodules
1615
----------

docs/source/agentlab.utils.rst

Lines changed: 0 additions & 21 deletions
This file was deleted.

conf.py renamed to docs/source/conf.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,19 @@
77
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
88

99
project = 'AgentLab'
10-
copyright = '2024, ServiceNow UI-Assist'
11-
author = 'ServiceNow UI-Assist'
10+
copyright = '2024, ServiceNow'
11+
author = 'ServiceNow'
12+
release = '0.3.1'
1213

1314
# -- General configuration ---------------------------------------------------
1415
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
1516

16-
extensions = []
17+
extensions = [
18+
'sphinx.ext.autodoc',
19+
]
1720

1821
templates_path = ['_templates']
19-
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
22+
exclude_patterns = []
2023

2124

2225

index.rst renamed to docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.. AgentLab documentation master file, created by
2-
sphinx-quickstart on Fri Nov 22 11:12:19 2024.
2+
sphinx-quickstart on Tue Nov 26 11:21:39 2024.
33
You can adapt this file completely to your liking, but it should at least
44
contain the root `toctree` directive.
55

0 commit comments

Comments
 (0)