Datasets:

Modalities:
Text
Formats:
json
Libraries:
Datasets
pandas
License:
File size: 1,813 Bytes
3add42f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---
license: apache-2.0
---

# AstraPy Documentation

This data file contains the AstraPy documentation in a specialized format for use
in the GraphRAG `code_generation` example.

## Generation

The file was generated using `astrapy` version `1.5.2` via the `convert` method in
`graph_rag_example_helpers.examples.code_generation.converter`. 

[See the help on the
method for more information about how to use it.](packages/graph-rag-example-helpers/src/graph_rag_example_helpers/examples/code_generation/converter.py)

## Structure

The JSONL file contains one JSON object per line, with the following structure:

```yaml
id: the path to the object in the package
text: the description of the object (if any, can be empty)

metadata: Always includes `name`, `path`, `kind` keys. The remaining keys below are included when available.
    name: the name of the object
    path: the path to the object in the package
    kind: either `module`, `class`, `function`, or `attribute`
    parameters: the parameters for a class or function. Includes type information, default values, and descriptions
    attributes: the attributes on a class or module. Includes type information and descriptions
    gathered_types: list of non-standard types in the parameters and attributes
    imports: list of non-standard types imported by the class or module
    exports: list of non-standard types exported by the module
    properties: list of boolean properties about the module
    example: any code examples for the class, function, or module
    references: list of any non-standard types used in the example code
    returns: the return type and description
    yields: the yield type and description
    bases: list of base types inherited by the class
    implemented_by: list of types that implement the a base class
```